home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
yam_i_dodatki
/
yamtools1.7
/
startyamtools.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-06-29
|
3KB
|
46 lines
/******************************************************************************/
/* */
/* YAMTOOLS */
/* Copyright ©1997 by Dick Whiting */
/* */
/*----------------------------------------------------------------------------*/
/* */
/* Standard Disclaimer: I wrote it, it works for me, I don't guarantee */
/* that it will do anything productive for anyone else, etc. etc. ;-) */
/* */
/*HOWEVER, if you DO find a use for it: I homeschool my kids and they */
/*would love a postcard from where EVER you live. */
/* */
/*Instant GEOGRAPHY lesson;) */
/* */
/* */
/*POSTCARDS: Dick Whiting */
/* 28590 S. Beavercreek Rd. */
/* Mulino, Oregon 97042 */
/* USA */
/* */
/*----------------------------------------------------------------------------*/
/* */
/* Address Bug Reports or Comments to: */
/* Dick Whiting <dwhiting@europa.com> */
/* 14 February 1997 */
/* */
/******************************************************************************/
/*
$VER: 1.0 Copyright ©1997 by Dick Whiting
$AUTHOR: Dick Whiting
$DESCRIPTION: Add-on Tools for Marcel Beck's wonderful YAM
*/
/**************************************************************************/
/* MuiRexx does not seem to like running MuiRexx from a Rexx Macro */
/* so we will create a script and then execute that */
/**************************************************************************/
foo=open('OUT','T:runyt.script','W')
foo=writeln('OUT',"FailAt 999999")
foo=writeln('OUT',"Stack 40000")
foo=writeln('OUT',"CD YAM:REXX")
foo=writeln('OUT',"run muirexx:muirexx YamTools.rexx PORT YAMTOOLS HELP YamTools.guide")
foo=close('OUT')
address Command 'execute T:runyt.script'
exit